home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / rendermap.scm < prev    next >
Text File  |  2009-12-15  |  3KB  |  96 lines

  1. ; Chris Gutteridge (cjg@ecs.soton.ac.uk)
  2. ; At ECS Dept, University of Southampton, England.
  3.  
  4. ; This program is free software; you can redistribute it and/or modify
  5. ; it under the terms of the GNU General Public License as published by
  6. ; the Free Software Foundation; either version 2 of the License, or
  7. ; (at your option) any later version.
  8. ;
  9. ; This program is distributed in the hope that it will be useful,
  10. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ; GNU General Public License for more details.
  13. ;
  14. ; You should have received a copy of the GNU General Public License
  15. ; along with this program; if not, write to the Free Software
  16. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18.  
  19. (define (script-fu-render-map inSize
  20.                               inGrain
  21.                               inGrad
  22.                               inWiden)
  23.  
  24.   (let* (
  25.         (theWidth inSize)
  26.         (theHeight inSize)
  27.         (theImage (car(gimp-image-new theWidth theHeight RGB)))
  28.         (theLayer 0)
  29.         (thinLayer 0)
  30.         )
  31.  
  32.   (gimp-context-push)
  33.  
  34.   (gimp-selection-all theImage)
  35.  
  36.   (set! theLayer (car (gimp-layer-new theImage theWidth theHeight
  37.                                       RGBA-IMAGE
  38.                                       "I've got more rubber ducks than you!"
  39.                                       100 NORMAL-MODE)))
  40.   (gimp-image-add-layer theImage theLayer 0)
  41.   (plug-in-solid-noise RUN-NONINTERACTIVE
  42.                theImage theLayer 1 0 (rand 65536)
  43.                        inGrain inGrain inGrain)
  44.  
  45.   (if (= inWiden 1)
  46.       (begin
  47.         (set! thinLayer (car (gimp-layer-new theImage theWidth theHeight
  48.                                              RGBA-IMAGE "Camo Thin Layer"
  49.                                              100 NORMAL-MODE)))
  50.         (gimp-image-add-layer theImage thinLayer 0)
  51.  
  52.         (let ((theBigGrain (min 15 (* 2 inGrain))))
  53.           (plug-in-solid-noise RUN-NONINTERACTIVE
  54.                    theImage thinLayer 1 0 (rand 65536)
  55.                                theBigGrain theBigGrain theBigGrain))
  56.  
  57.         (gimp-context-set-background '(255 255 255))
  58.         (gimp-context-set-foreground '(0 0 0))
  59.  
  60.         (let ((theMask (car (gimp-layer-create-mask thinLayer 0))))
  61.           (gimp-layer-add-mask thinLayer theMask)
  62.  
  63.           (gimp-edit-blend theMask FG-BG-RGB-MODE NORMAL-MODE
  64.                            GRADIENT-LINEAR 100 0 REPEAT-TRIANGULAR FALSE
  65.                            FALSE 0 0 TRUE
  66.                            0 0 0 (/ theHeight 2)))
  67.  
  68.         (set! theLayer (car(gimp-image-flatten theImage)))))
  69.  
  70.   (gimp-selection-none theImage)
  71.   (gimp-context-set-gradient inGrad)
  72.   (plug-in-gradmap RUN-NONINTERACTIVE theImage theLayer)
  73.  
  74.   (gimp-display-new theImage)
  75.  
  76.   (gimp-context-pop)
  77.   )
  78. )
  79.  
  80. (script-fu-register "script-fu-render-map"
  81.   _"Render _Map..."
  82.   _"Create an image filled with an Earth-like map pattern"
  83.   "Chris Gutteridge: cjg@ecs.soton.ac.uk"
  84.   "28th April 1998"
  85.   "Chris Gutteridge / ECS @ University of Southampton, England"
  86.   ""
  87.   SF-ADJUSTMENT _"Image size"       '(256 0 2048 1 10 0 0)
  88.   SF-ADJUSTMENT _"Granularity"      '(4 0 15 1 1 0 0)
  89.   SF-GRADIENT   _"Gradient"         "Land and Sea"
  90.   SF-TOGGLE     _"Gradient reverse" FALSE
  91.   SF-OPTION     _"Behavior"         '(_"Tile" _"Detail in Middle")
  92. )
  93.  
  94. (script-fu-menu-register "script-fu-render-map"
  95.                          "<Image>/File/Create/Patterns")
  96.